Update another css parser test
authorMatthias Clasen <mclasen@redhat.com>
Mon, 21 Dec 2015 19:17:28 +0000 (14:17 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 21 Dec 2015 19:18:51 +0000 (14:18 -0500)
This test was using the engine property, which has
been deprecated and thus generates an error now.
Instead, use the font property.

testsuite/css/parser/Makefile.am
testsuite/css/parser/declarations-valid-18.css
testsuite/css/parser/declarations-valid-18.errors [deleted file]
testsuite/css/parser/declarations-valid-18.ref.css

index 39f3e9fafc4599e539e1b3be351808195ade77ac..b2829fb67be66dc3a17f91c6191b75bec647ffb4 100644 (file)
@@ -284,7 +284,6 @@ test_data = \
        declarations-valid-17.css \
        declarations-valid-17.ref.css \
        declarations-valid-18.css \
-       declarations-valid-18.errors \
        declarations-valid-18.ref.css \
        declarations-valid-19.css \
        declarations-valid-19.ref.css \
index 8b4b092791c023ff596420976eafd306205af667..4688e0ca2ba87a6281da050e5a29e78ec6f6c168 100644 (file)
@@ -1 +1 @@
-* { engine: definitelydoesnotexist }
+* { font: definitelydoesnotexist }
diff --git a/testsuite/css/parser/declarations-valid-18.errors b/testsuite/css/parser/declarations-valid-18.errors
deleted file mode 100644 (file)
index 9b00258..0000000
+++ /dev/null
@@ -1 +0,0 @@
-declarations-valid-18.css:1: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..853a2cc93acffeb0fb6e9b3bd7b655c1759d84b6 100644 (file)
@@ -0,0 +1,8 @@
+* {
+  font-family: "definitelydoesnotexist";
+  font-size: initial;
+  font-stretch: normal;
+  font-style: normal;
+  font-variant: normal;
+  font-weight: normal;
+}